All Questions
Tagged with xmldevelopment
25 questions
0votes
1answer
256views
Get the Outer XML inside Power automate
I am converting a Nintex flow into Power Automate flow, where inside the Nintex we have this extract XML step;- For getting the outer xml and store it inside a Collection, our xml has this format:- &...
0votes
1answer
32views
having trouble loading XML into dropdownlist control
I'm working with a GridView table and have a dropdown control inside of it. my main task here is create a cascading dropdown with a webpart I'm designing. to that end, the XML file is supposed to ...
0votes
1answer
22views
How to deploy different files in single feature for mulitple subsites?
I need to deploy different images into picture library for different sub sites in a single feature, I mean I have five images, I need to deploy the first two image in the site collection, third image ...
0votes
1answer
616views
Set no to Allow this site to appear in search results using XMl and c#?
I need to set No for Allow items from this list to appear in search results? for my custom list, so I achieved this by following PowerShell scripts //Get the list which was created SPList spList = ...
0votes
1answer
805views
Exporting the site columns' xml schema will not show all the site columns properties (ShowInEditForm is missing on some columns)
I have sharepoint farm 2013 on-premises. i wrote the following powershell script to export all the site columns properties which are inside the "Custom columns" group. now i wanted to document the ...
1vote
0answers
391views
Lookup site column created using powershell will have an empty source list
I am working on a sharepoint server 2013 on-premise. and i run the following power-shell script to create a lookup column :- #Create site column from XML string $web.Fields.AddFieldAsXml($fieldXML) $...
0votes
1answer
61views
I cannot see my group in ribbon in list view form? XML
I have the following XML trying to create a new ribbon group but I don't know what is going wrong here <?xml version="1.0" encoding="utf-8"?> <Elements xmlns="http://schemas.microsoft.com/...
0votes
2answers
722views
parsing this XML in C# for a SharePoint Field
I have the below field xml which I get after calling a web service. I am getting the error Name cannot begin with the '=' character, hexadecimal value 0x3D. Line 1, position 2325. <Field ...
0votes
0answers
212views
Need to get folder,file items using REST
I have used REST url as: _api/web/Lists/GetByTitle('MediaGallery')/Items?$expand=Folder,File&$select=Title,FileSystemObjectType,Title_Ar,Folder/ServerRelativeUrl,Folder/Name,File/Name,File/...
1vote
1answer
78views
Cannot find right configuration for ReceiverAssembly
I have a custom SPFeatureReceiver, which is supposed to run upon the activation of the feature. The Feature.template.xml has been modified to this: <?xml version="1.0" encoding="utf-8" ?> <...
0votes
1answer
486views
Setting the value of a boolean XMLElement
I'm having a problem when assigning a value to a Boolean check/tick box within InfoPath xml code. I've created text boxes using inner text values but this gives the error of an incorrect data type. ...
1vote
1answer
419views
Available documentations about the “alerttemplates.xml” fields name and layout classes
I want to modify the default alerttemplates .xml alert template. But seems the only way to hide, display and change the components format is to know exactly the name of each components . Such as the ...
1vote
1answer
98views
Feature Upgrade on XML defined lists
I had created a project that defined some content types and lists via XML. After it's release we need to make some updates to this feature to include some new functionality. My concern is that since ...
1vote
2answers
3kviews
How to read and output the XML within an SPFile?
I have this line of code that retrieves an XML file and saves it as an SPFile object SPFile XMLFile = SPContext.Current.Web.GetFile("C:\\Users\\maleem\\Documents\\XMLTest.xml"); I want to get the XML/...
0votes
1answer
1kviews
Sharepoint list to XML including the headings?
We store data regarding Scrum sprint retrospectives in a SharePoint list. I have to create a chart for visualizing this information (which is not part of this topic/problem), so I need to somehow ...